home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_05 / plauger / unset.c < prev   
C/C++ Source or Header  |  1994-03-08  |  244b  |  13 lines

  1.  
  2. ---------------- Listing 12: The function ios::unset(fmtflags) ----------
  3.  
  4. // iosunsetf -- ios::unsetf(fmtflags)
  5. #include <ios>
  6.  
  7. void ios::unsetf(fmtflags mask)
  8.     {    // reset format bits under mask
  9.     _Fmtfl &= ~mask;
  10.     }
  11.  
  12.  
  13.